repo.or.cz
/
and.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Optimizing my Ford-Fulkerson implementation for sparse graphs.
[and.git]
/
10181 - 15-Puzzle problem
/
p10181.cpp
blob
0fc6ac798b0a2aa766b43b697ebe34f6636a4568
1
#include <iostream>
2
#include <map>
3
4
using namespace
std
;
5
6
typedef
unsigned long long
ull
;
7
8
ull final
=
0x123456789ABCDEF0
LL
;
9
10
int
main
(){
11
printf
(
"%llX
\n
"
,
final
);
12
return
0
;
13
}